memo function - определение. Что такое memo function
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое memo function - определение

SOFTWARE PROGRAMMING OPTIMIZATION TECHNIQUE
Memoize; Memoisation; Memoizing; Memoise; Memo function; Memo functions; Memoised function; Memoized function; Tabling; Automatic memoization; Memoizing parsers

memo function         
<programming> (Or "memoised function") A function that remembers which arguments it has been called with and the result returned and, if called with the same arguments again, returns the result from its memory rather than recalculating it. Memo functions were invented by Professor Donald Michie of Edinburgh University. The idea was further developed by Robin Popplestone in his Pop2 language long before it was ever worked into LISP. This same principle is found at the hardware level in computer architectures which use a cache to store recently accessed memory locations. A Common Lisp package by Marty Hall <hall@aplcenmp.apl.jhu.edu> ftp://archive.cs.umbc.edu/pub/Memoization. ["'Memo' functions: and machine learning", Donald Michie, Nature, 218, 19-22, 1968]. (2002-07-02)
memoized function         
Tabling         
·noun Board; support.
II. Tabling ·noun A broad hem on the edge of a sail.
III. Tabling ·noun Act of playing at tables. ·see Table, ·noun, 10.
IV. Tabling ·noun A forming into tables; a setting down in order.
V. Tabling ·noun The letting of one timber into another by alternate scores or projections, as in shipbuilding.

Википедия

Memoization

In computing, memoization or memoisation is an optimization technique used primarily to speed up computer programs by storing the results of expensive function calls and returning the cached result when the same inputs occur again. Memoization has also been used in other contexts (and for purposes other than speed gains), such as in simple mutually recursive descent parsing. Although related to caching, memoization refers to a specific case of this optimization, distinguishing it from forms of caching such as buffering or page replacement. In the context of some logic programming languages, memoization is also known as tabling.